Breaks out of the current loop.Parameters
None.Remarks
Example
:DBUPDATE $db = "Provider=MSDAORA.1;User ID=scott;Password=tiger;Data Source=xtendora;Persist Security Info=False" $empinfo = db.Open($db,"SELECT * FROM EMP ORDER BY SAL ASC") if $empinfo != 1 then goto DBERROR while not $empinfo.eof if compare($empinfo.ENAME,"KING") != 0 $empinfo = db.Skip() continue endif display $empinfo.ENAME " " $empinfo.JOB " " $empinfo.SAL // C,C++ programmers like to use BREAK instead of EXIT exit endwhile $empinfo = db.Close() :DBERROR display "Error in database connection"